home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 43.zip / ANC 15.adf / REVISIONS < prev    next >
Text File  |  1987-01-01  |  2KB  |  42 lines

  1. TxEd Plus V2.0                    March 15, 1988
  2.  
  3. This is the initial release of TxEd Plus.  Please note the following
  4. changes from the manual, most of which deal with the TxEd Plus command
  5. language:
  6.  
  7. SOME OF THE RETURN CODES WHILE EXECUTING MACROS MAY NOT MATCH THE
  8. MANUAL.  If you find a return code that does not match, please drop
  9. us a note so we can fix it for the next update.
  10.  
  11. If you are running an AREXX macro and get the error message
  12. "function not found", it probably means this macro requires the
  13. complete AREXX program which includes the missing function,
  14. which is not in REXXDEMO on this diskette.
  15.  
  16. Note that the program "RUNBACK" has been replaced by the ARP program
  17. "ARUN", see the ARP user documetation for details on ARUN.
  18.  
  19. NEW KEYWORDS:
  20.  
  21. LOCK n
  22.     This keyword will LOCK OUT ALL KEYBOARD/MOUSE INPUT while you
  23. are running a REXX macro.  Also, the display will not be updated while
  24. LOCK is on.  LOCK 0 will clear the lock status.  LOCK is turned OFF
  25. at the start of any macro, and only lasts while a macro is running.
  26. Use REDISPLAY to refresh the screen.
  27.  
  28. TIMEOUT n
  29.     This keyword allows you to specify a TIMEOUT which, if there
  30. is no Keyboard/Mouse input for that ammount of time, a macro will be
  31. executed.  THE MACRO EXECUTED IS THE +Z macro, which has been annexed
  32. for this usage.  THUS, THE +Z MACRO IS NO LONGER A SCRATCH MACRO, if
  33. you specify a TIMEOUT value.  NOTE THAT THE TIMEOUT ONLY OCCURS WHEN
  34. THE EDITING WINDOW IS ACTIVE, DUE TO THE WAY INTUITION HANDLES TIMING.
  35. See the file rexx:tutorial.txed for an example.
  36.  
  37. FIND n
  38.     The FIND keyword has a slightly changed syntax.  FIND with no
  39. arguement will bring up the SEARCH requester; FIND 1 will now search
  40. for the contents of the search macro.  FIND "string" is the same as
  41. originally documented.
  42.